#
# Melissa Data Name Object for Windows 32 and 64 bit .dlls
#
# sample makefile for customers
#
CXX=cl
CXXFLAGS=-Zi -O -GX
LDLIBS=mdName.lib
RM=del /q /f

all: mdNameExample.exe

mdNameExample.exe:	mdNameExample.cpp mdName.h
	$(CXX) $(CXXFLAGS) mdNameExample.cpp $(LDLIBS)

clean:
	$(RM) *.exe *.obj *.ilk *.pdb

